home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 4347 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.4 KB

  1. Path: manawatu.planet.co.nz!news
  2. From: kurg@manawatu.gen.nz (Damon Davies)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: need help on A1200/030 board programming
  5. Date: 27 Feb 1996 20:32:24 GMT
  6. Organization: PlaNet (NZ) Manawatu, Palmerston Nth, New Zealand +64 6 357-9245
  7. Message-ID: <772.6632T572T2649@manawatu.gen.nz>
  8. References: <4gb9ao$104@sunsystem5.informatik.tu-muenchen.de>
  9.     <1189.6628T141T1560@wr.com.au> <38232664@kone.fipnet.fi>
  10. NNTP-Posting-Host: kurg.manawatu.gen.nz
  11. Mime-Version: 1.0
  12. Content-Type: text/plain; charset=iso-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Newsreader: THOR 2.21 (Amiga;TCP/IP)
  15.  
  16. >> Yeah, it's not really a problem, as long as the programmer recognises
  17. >> fast ram (which unfortunately a lot of games don't seem to do..).
  18.  
  19. >You dont have to "recognise" FAST-ram, just dont force stuff
  20. >into CHIP-ram which does not need to be there, ie. only
  21. >gfx data, samples, display memory etc.
  22.  
  23. >--                               _
  24. >a Stellar programmer          _ //
  25. >"Amiga - back for the future" \X/
  26.  
  27. Just an ellaboration: 
  28.  
  29. This is how you do it in assembler "Section TheCode,code" will put the code 
  30. in fast ram preferably, but in chip if there is no fast."Section 
  31. TheCode,code_f" will put the code in fast only! and fail if there is none.
  32. "Section TheCode,code_c" will put the code in chip memory only. You also
  33. have the directive data,data_F,data_C.
  34.  
  35. Damon.
  36.